* {
    padding: 0;
    margin: 0;
}


.working {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    height: 100vh;
}

#left {
    background-image: url('left1860.png');
    background-size: cover; /* Adjust the background size to cover the entire div */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat; /* Prevent the background image from repeating */
    
}
#right {
    background-image: url('right1860.png');
    background-size: cover; /* Adjust the background size to cover the entire div */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat; /* Prevent the background image from repeating */
    
}
h1 {
    padding-bottom: 0;
}

.list {
    background-color: #ff914d;
    color: rgb(245, 245, 245);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.list .heading {
    display: flex;
    justify-content:center;
    font-family: 'Song Myung', serif;
    margin-bottom: 10px;
}
.list .points {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
a:link {
    color:white;
    font-family: 'Song Myung', serif;
    text-decoration: none;
}
a:visited {
    color: white;
    font-family: 'Song Myung', serif;
    text-decoration:none;
}
li {
    margin-bottom: 10px;
    margin-left:100px;
    font-size:20px;
}
@media (min-width: 1500px) and (max-width: 1860px) {
    #left {
        background-image: url('left1500.jpg');
        background-size: cover; /* Adjust the background size to cover the entire div */
      background-position: center; /* Center the background image */
      background-repeat: no-repeat; /* Prevent the background image from repeating */
        
    }
    #right {
        background-image: url('right1500.jpg');
        background-size: cover; /* Adjust the background size to cover the entire div */
      background-position: center; /* Center the background image */
      background-repeat: no-repeat; /* Prevent the background image from repeating */
        
    }
}
@media (min-width: 1100px) and (max-width: 1500px) {
    #left {
        background-image: url('left1100.jpg');
        background-size: cover; /* Adjust the background size to cover the entire div */
      background-position: center; /* Center the background image */
      background-repeat: no-repeat; /* Prevent the background image from repeating */
        
    }
    #right {
        background-image: url('right1100.jpg');
        background-size: cover; /* Adjust the background size to cover the entire div */
      background-position: center; /* Center the background image */
      background-repeat: no-repeat; /* Prevent the background image from repeating */
        
    }
}
@media only screen and (max-width: 1100px) {
    .working {
        display: grid;
        grid-template-columns: 1fr;
        height: 100vh;
    }
    
    #left {
       display: none;
    }
    #right {
        display: none;
    }
    .list {
        background-color: #ff914d;
        color: rgb(245, 245, 245);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
    .list .heading {
        display: flex;
        justify-content:center;
        font-family: 'Song Myung', serif;
        margin-bottom: 10px;
    }
    .list .points {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    a:link {
        color:white;
        font-family: 'Song Myung', serif;
        text-decoration: none;
    }
    a:visited {
        color: white;
        font-family: 'Song Myung', serif;
        text-decoration:none;
    }
    li {
        margin-left: 50px;
        margin-bottom: 10px;
        font-size:20px;
    }
}